Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
## ------------------------------------
USER=$(whoami)
cd /Users/{USER}/Library/Application Support/Steam/Steam.AppBundle/Steam/Contents/MacOS/public ls *.res | while read line ; do file=$(echo $line | tr '[:upper:]' '[:lower:]'); mv $line $file; done
cd /Users/{USER}/Library/Application Support/Steam/Steam.AppBundle/Steam/Contents/MacOS/steam/cached/ ls *.res | while read line ; do file=$(echo $line | tr '[:upper:]' '[:lower:]'); mv $line $file; done
cd /Users/{USER}/Library/Application Support/Steam/Steam.AppBundle/Steam/Contents/MacOS/friends ls *.res | while read line ; do file=$(echo $line | tr '[:upper:]' '[:lower:]'); mv $line $file; done
## ------------------------------------
I too was having the same issues on MacOS with getting steam to run. I followed the bash commands above and that solved my problem. I can now login to steam and no longer get file errors in the log. Thanks binghuanlin.
I also had to make the changes in the graphics folder and servers folder as well.
For reference I threw the above into a shell script and ran it, I had to make a few minor adjustments to make it work, specifically I added a ";" between the cd and ls command to make it flow properly from one command to the next.
Thanks for your help!
where am i suppose to type this:
## ------------------------------------
USER=$(whoami)
cd /Users/{USER}/Library/Application Support/Steam/Steam.AppBundle/Steam/Contents/MacOS/public ls *.res | while read line ; do file=$(echo $line | tr '[:upper:]' '[:lower:]'); mv $line $file; done
cd /Users/{USER}/Library/Application Support/Steam/Steam.AppBundle/Steam/Contents/MacOS/steam/cached/ ls *.res | while read line ; do file=$(echo $line | tr '[:upper:]' '[:lower:]'); mv $line $file; done
cd /Users/{USER}/Library/Application Support/Steam/Steam.AppBundle/Steam/Contents/MacOS/friends ls *.res | while read line ; do file=$(echo $line | tr '[:upper:]' '[:lower:]'); mv $line $file; done
## ------------------------------------
can you rewrite the code please? It doesnt work...